Huffman code - translation to English
Diclib.com
Online Dictionary

Huffman code - translation to English

ENTROPY ENCODING ALGORITHM USED FOR LOSSLESS DATA COMPRESSION
Data compression/Huffman coding; Huffman encoding; Huffman code; Huffman tree; Huffman codes; Huffman Compression algorithm; Huffmann encoding; Hufman encoding; Huffmann coding; Hufman coding; Huffman Code; Huffman Compression; Huffman's algorithm; Hu-Tucker; Hu-Tucker coding; Huffman-Shannon-Fano coding; Huffman Coding; Huffman algorithm; Huffmann code; K-ary Huffman coding; K-ary Hufman encoding; Huffman’s algorithm; K-ary Huffman encoding; Coding tree; Static Huffman coding; Huffman Encoding; Huffman Decoding; Hoffman coding; Length-limited Huffman code; Length-limited Huffman coding; Minimum variance Huffman coding; Minimum variance Huffman code; Alphabetic Huffman tree; Alphabetic Huffman coding; Applications of Huffman coding; Huffmann decoding; Fixed-length Huffman code; Limited-length Huffman code
  • Constructing a Huffman Tree

Huffman code         

общая лексика

код Хаффмана

код, предложенный в 1952 г. (D.A. Huffman), в котором длина кодирующего слова обратно пропорциональна встречаемости кодируемого элемента, т.е. часто встречающимся элементам соответствуют короткие коды, редко встречающимся - длинные. Используется в факсимильных аппаратах Group 3

Смотрите также

Huffman coding; LZW

Huffman code         
код Хаффмена, код сжатия данных
Huffman coding         

общая лексика

кодирование методом Хаффмана

Смотрите также

Huffman code; VLC

Definition

ФРАНЦУЗСКИЙ ГРАЖДАНСКИЙ КОДЕКС
1804 (Кодекс Наполеона) , действующий гражданский кодекс Франции. Составлен при активном участии Наполеона. Включает нормы гражданского, семейного, процессуального, частично трудового права. Кодекс закрепил свободу частной собственности, провозгласив это право священным и неприкосновенным.

Wikipedia

Huffman coding

In computer science and information theory, a Huffman code is a particular type of optimal prefix code that is commonly used for lossless data compression. The process of finding or using such a code proceeds by means of Huffman coding, an algorithm developed by David A. Huffman while he was a Sc.D. student at MIT, and published in the 1952 paper "A Method for the Construction of Minimum-Redundancy Codes".

The output from Huffman's algorithm can be viewed as a variable-length code table for encoding a source symbol (such as a character in a file). The algorithm derives this table from the estimated probability or frequency of occurrence (weight) for each possible value of the source symbol. As in other entropy encoding methods, more common symbols are generally represented using fewer bits than less common symbols. Huffman's method can be efficiently implemented, finding a code in time linear to the number of input weights if these weights are sorted. However, although optimal among methods encoding symbols separately, Huffman coding is not always optimal among all compression methods - it is replaced with arithmetic coding or asymmetric numeral systems if a better compression ratio is required.